home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 090 / ibm628.arc / IBMNEWS.628 / text0000.txt < prev   
Encoding:
Text File  |  1987-04-21  |  23.6 KB  |  717 lines

  1. Info-IBMPC Digest       Thursday, 16 April 1987      Volume 6 : Issue 28
  2.  
  3. This Week's Editor: Billy Brackenridge
  4.  
  5. Today's Topics:
  6.  
  7.                  DOS 3.2 COPY
  8.                DOS 3.3 Patches
  9.           CMU Version of MIT PCIP via Bitnet
  10.              Free Form Data Bases
  11.               MAC to PC Data Conversion
  12.               Mac/IBM Disks and Software
  13.                Macintosh and PC
  14.         SURFMODL 1.1 available from Simtel-20
  15.             47th Street Mail-Order Company
  16.              47th St. Mail Order
  17.               IBM DIA DCA Manual Numbers
  18. Today's Queries:
  19.               Binary High Speed Transfer
  20.                  3-D Modeling
  21.             BIOS System Diagnostic
  22.            MAJOR Glitch in Turbo Pascal Command.com
  23.               Two Color Monitors at Once
  24.               3270 AT/G Cycle Priorities
  25.               Simulation Package Wanted
  26.               MS-DOS CHMOD Help
  27.          Simplex and Linear Programming Lindo
  28.             PD Gosling EMACS Help
  29.              EGA Screen Blanking
  30.         Having TurboPascal Accept Commands from a File
  31.  
  32.  
  33.       INFO-IBMPC BBS Phone Numbers: (213)827-2635 (213)827-2515
  34.  
  35. ----------------------------------------------------------------------
  36.  
  37.  
  38. Date:     Wed, 15 Apr 87 8:04:17 EST
  39. From:     Steven Segletes <steven@BRL>
  40. To:       "JOHN R. THOMPSON" <WOOLFORD.THOMPSON@BIONET-20.ARPA>
  41. Subject: DOS 3.2 COPY
  42.  
  43. I have found with MS-DOS 3.1 that COPY also appears to be broken for large
  44. files.  Case in point:
  45.  
  46. COPY F1.TXT+F2.TXT+F3.TXT+F4.TXT+F5.TXT F.TXT
  47.  
  48. where each of the F"i".TXT files are about 60K gave a resulting file size of
  49. 260K, not 300K.  Upon typing F.TXT to the screen, all sorts of gibberish
  50. popped up on the screen at the point where the files joined.  I have not tried
  51. the /B option during the copy.
  52.  
  53. -Steve Segletes
  54. U.S. Army Ballistic Research Laboratory
  55. APG, MD 21005-5066-309-217-A
  56.  
  57.  
  58. ------------------------------
  59.  
  60.  
  61. From: Donna L. Arellano <ecsvax!dlg%mcnc.org@relay.cs.net>
  62. Date: 15 Apr 87 20:15:23 GMT
  63. Subject: DOS 3.3 Patches
  64. Organization: UNC-Chapel Hill
  65.  
  66.  
  67. We've had our hands on a PS/2 model 60 for a few days now.  Wow!
  68. Anyway, we've found some of the DOS 3.3 addresses for patches that
  69. have been posted in the past for DOS 3.2/3.1.  In the following list,
  70. all addresses are for DEBUG; subtract 0100h for the real addresses.
  71.  
  72. Here goes -->
  73.  
  74. 1. Increase Environment Size:
  75.    Not needed -> use the SHELL command in CONFIG.SYS with the /P and
  76.                  /E parameters.
  77.  
  78.  
  79. 2. Automatic Installation of printer for PRINT:
  80.    Not needed -> use the new /D parameter the first time PRINT is
  81.                  invoked.
  82.  
  83.  
  84. 3. Disable EDLIN from making .BAK files:
  85.    File=EDLIN.COM     3.1 Addr=0CD5    3.3 Addr=0CD8
  86.                              Change 56 -> 41
  87.  
  88.  
  89. 4. Allow 50 mismatches in COMP before terminating:
  90.    File=COMP.COM      3.1 Addr=08E2    3.3 Addr=0AF3
  91.                              Change 0A -> 32
  92.                       3.1 Addr=0BF8    3.3 Addr=0E09
  93.                              Change 31 -> 35
  94.  
  95.  
  96. 5. ECHObb produces a blank line from a .BAT file:
  97.    File=COMMAND.COM   3.1 Addr=3878    3.3 Addr=3F29
  98.                     Change E8 20 00 74 -> 83 F9 02 72
  99.    This allows you to put ECHO followed by two spaces in a .BAT file
  100.    to print a blank line on the screen.
  101.  
  102.  
  103. 6. Default to ECHO OFF:
  104.    File=COMMAND.COM   3.1 Addr=1967     3.3 Addr=1D68
  105.                              Change 01 -> 00
  106.  
  107.  
  108. 7. Sound a BEEP at the end of a FORMAT:
  109.    File=FORMAT.COM    3.1 Addr=152F     3.3 Addr=2185
  110.                       Enter the following DEBUG commands:
  111.   -D 2185 l20 <cr>
  112.   -E 2185 "Do another  (Y/N) ?",07," " <cr>
  113.   -D 2185 l20 <cr>
  114.   -W
  115.   -Q
  116.    Be sure to include the quotes and spaces in the E command.  The 07
  117.    does the beep.
  118.    Below is the result of the first D command:
  119.   xxxx:2180                 46 6F 72 6D 61 74 20 61 6E 6F 74       Format anot
  120.   xxxx:2190  68 65 72 20 28 59 2F 4E 29 3F 00 49 6E 73 65 72  her (Y/N)?.Inser
  121.   xxxx:21A0  74 20 44 4F 53                                   t DOS
  122.      The 00 at 219A must not be disturbed!
  123.  
  124.  
  125.  
  126.  
  127. Note: We use a prompt which remembers the cursor position, displays the
  128.       date, time and some other stuff on line one of the screen, and then
  129.       goes back where the cursor was and prints C>.  After we changed
  130.       COMMAND.COM to default to ECHO OFF, we found that if we executed
  131.       a .BAT file that had CLS as its final command, the cursor remained
  132.       on line one of the screen.  Seems that DOS is executing CLS differ-
  133.       ently than before.  Small fix: follow the CLS with ECHObb in all
  134.       .BAT files.  Works just fine.
  135.  
  136.  
  137. Hope this comes in handy for some people.  If anyone knows of any other
  138. patches, please post.
  139.    
  140.                      Donna Arellano
  141.                      !(backbone)!mcnc!ecsvax!dlg
  142.                      Univ. of North Carolina
  143.  
  144. ------------------------------
  145.  
  146.  
  147. Date: Wed, 15 Apr 87 14:11:54 edt
  148. From: Drew Daniel Perkins <ddp#@andrew.cmu.edu>
  149. Subject: CMU Version of MIT PCIP via Bitnet
  150.  
  151.  
  152.  
  153. CMU PC/IP is now available via bitnet.  From a VM system give the command
  154. "tell listserv at cmuccvma get pcip package".  From a VMS system use "send
  155. listserve@cmuccvma get pcip package".  If you want to subscribe and get new
  156. versions automatically, say "tell listserve at cmuccvma afd add pcip
  157. package".  Or you can ask to get mail when files are updated by saying "tell
  158. listserve at cmuccvma fui add pcip package".
  159.  
  160. These files may take a while to get to you, since some are over 800kb and
  161. bitnet sends files prioritized by file length (or so I am told...).  Also, I
  162. have gotten mixed opinions on whether these files will even make it through
  163. bitnet unchanged.  If you have problems with this, let me know.
  164.  
  165. Most of these files are .boo files created by running Columbia's boo file
  166. generator on my .tar files.  So, building the package requires a few steps.
  167. First you must compile the program msbpct.c file which you should get when
  168. you ask for the package.  Then you must recreate the .tar files by running
  169. msbpct on each of the .boo files.  Once you have the .tar files recreated,
  170. you can build the package by reading the read me file.
  171.  
  172. If you retrieve these files, please let me know of any problems, remarks,
  173. etc.  I'd really like to know if this works successfully.
  174.  
  175. Drew
  176.  
  177.  
  178.  
  179. ------------------------------
  180.  
  181.  
  182. Date:     Wed, 15 Apr 87 14:07 PDT
  183. From: <DBUERGER%SCU.BITNET@wiscvm.wisc.edu>
  184. Subject:  Free Form Data Bases 
  185.  
  186.  
  187. A recent request queried about free-form data bases for the PC.  To my
  188. knowledge, there presently are three decent ones around:
  189.  
  190. 1) (The best:) AskSam from Seaside Software
  191.                            538 Prade Dr.
  192.                            Corpus Cristi, TX  78412
  193.                            800-327-5726
  194.  
  195. 2) (Less flexible than AskSam, but not bad:)
  196.           Notebook II from Pro/Tem Software, Inc.
  197.                            2363 Boulevard Circle
  198.                            Walnut Creek, CA  94595
  199.  
  200. 3) (TSR, but kinky because you must use the same name for each database:)
  201.           Instant Recall - Precept Software
  202.                            3790 El Camino Real, #173
  203.                            Palo Alto, CA  94306
  204.                            (415) 327-6886
  205.  
  206. We've looked at all three, and AskSam seems to be the hands-down winner.
  207.  
  208. David J. Buerger
  209. Santa Clara University
  210. dbuerger@SCU (bitnet)
  211.  
  212. ------------------------------
  213.  
  214.  
  215. Date: Wed, 15 Apr 87 09:11:11 PDT
  216. From: jww@sdcsvax.ucsd.edu (Joel West)
  217. Subject: MAC to PC Data Conversion
  218.  
  219.  
  220. I didn't see the original query, so I don't know if the requirement
  221. was only to read Mac disks on a PC or move data in both directions.
  222.  
  223. However, Apple has announced a 5.25" 360K (yuk!) drive and controller
  224. cards for the Macintosh II and Macintosh SE.  No doubt that the
  225. 8086 and 80286 coprocessor boards will also have some controller.
  226. There is currently a third-party 5.25" 360K drive available from
  227. Abatron.
  228.  
  229. Also, I've seen indications that Apple is planning (has finished?)
  230. software emulation of DG/One (& PC Convertible) 720K 3.5" floppies;
  231. I know the hardware in the Mac II and I believe SE can handle this, no 
  232. idea about the 800K drive in the good ol' Mac Plus.  (Is the buzzword MFM?)
  233.  
  234. Finally, Apple ***someday*** will release a 1.6Mb quad-density
  235. floppy, which of course will be able to read PS/2 1.44 floppies
  236. (now that they know it's a requirement).
  237.  
  238. For those who wonder about the disparity, it all started with the
  239. single-sided 400K Macintosh (128) and the 360K HP 150 touchscreen.
  240. Apple begged Sony for a few extra tracks and uses a variable number
  241. of sectors per track for the extra 11%.
  242.  
  243. ------------------------------
  244.  
  245.  
  246. Date: Wed, 15-Apr-87 20:36:09 PDT
  247. From: bcsaic!asymet!fred@june.cs.washington.edu (Fred Wamsley)
  248. Subject: Mac/IBM Disks and Software
  249. To: uw-june!c.isi.edu!info-ibmpc@asymet
  250.  
  251. Software:
  252.     Mac on IBM: no way.  Would require a board with the Mac ROMs,
  253. which Apple keeps a tight grip on.
  254.     IBM on Mac: Dayna sells a PC clone that uses the Mac as a
  255. monochrome display.  AST has announced 80x86 boards for the Mac SE
  256. and Mac II which are supposed to provide IBM compatibility, but I
  257. don't know anyone who's used them.
  258.  
  259. Disks:
  260.     Mac disks on IBM:  I don't know.
  261.     IBM disks on Mac:  Apple has announced a 5.25" drive and conversion 
  262. software with the new Macs.  It's called Passport.  Also look up a company
  263. called Abaton.
  264.  
  265. A LAN product called TOPS from Centram allows you to use a disk on a Mac
  266. as a server for an IBM and vice versa.  Would this address your needs?
  267.  
  268. Fred Wamsley (GEnie: FKWAMSLEY, ATT Mail: fwamsley, CIS: 72247,3130)
  269.  
  270.  
  271. ------------------------------
  272.  
  273.  
  274. Date:    Thu, 16 Apr 87 18:33 EST
  275. From: Tom Dowdy <CML5A9%IRISHMVS.BITNET@wiscvm.wisc.edu>
  276. Subject: Macintosh and PC
  277.  
  278. Recently there was a question concerning Mac emulation
  279. on PCs.  In an answer that later followed it was pointed
  280. out that emulation was pretty hard and no one would probably
  281. do it.  I agree...
  282.  
  283. While this might not solve your problem, it might help others
  284. in a similar situation:
  285.  
  286. 1) The TOPS solution is good if you want to share data on
  287. a regular basis.  Kermit is also great if you only need
  288. occasional FILE transfer.
  289.  
  290. 2) The new Macintoshes (SE and II) have cards out from
  291. AST with 8086 or 80286 on them and run PC software within a
  292. window.  A much better solution than MacCharlie, that's for
  293. sure.
  294.  
  295. 3) Once again, if data transfer is all that is necessary,
  296. look into the 5.25" drive that Apple just announced, which
  297. can read PC format, as well as a program available from
  298. ADPA (Their developer software distribution division) that
  299. will read PC 3.50" disks on a Mac drive.
  300.  
  301. 4) I should point out that hardware emulation of a Mac
  302. isn't IMPOSSIBLE.  A company has a card out for the Atari
  303. ST called MagicSack that emulates a Mac.  However, the ROM set
  304. doesn't come with it, and it's pretty hard to come by
  305. (legally) without actually buying a Mac.  I doubt you'll
  306. ever see any Mac ROM clones out there.
  307.  
  308.  
  309. -Tom Dowdy
  310.  CML5A9@IRISHMVS.BITNET
  311.  
  312. "They say there is strangeness to danger us,
  313.  In our theaters and bookstore shelves.
  314.  Those who know what's best for us,
  315.  Must rise and save us from ourselves."
  316.  
  317. ------------------------------
  318.  
  319.  
  320. Date:     Thu, 16 Apr 87 7:54:21 EST
  321. From:     Kenneth Van Camp -FSAC- <kvancamp@ARDEC.ARPA>
  322. Subject:  SURFMODL 1.1 available from Simtel-20
  323.  
  324.  
  325. SURFMODL version 1.1 is now available from Simtel-20.  It is broken into two 
  326. archives; the first contains the source code, documentation, and example 
  327. data files.  The second contains several different versions of the 
  328. executable code to support the Hercules graphics board, CGA, EGA, 
  329. Heath/Zenith Z-100, AT&T 6300, Sanyo MBC-55x, and IBM 3270.  You will need 
  330. the following two files: 
  331.  
  332. Filename            Type     Bytes     CRC
  333.  
  334. Directory PD:<MSDOS.SURFMODL>
  335. SURFMODL.ARC            BINARY    234507  F713H
  336. SURFMVSN.ARC            BINARY    346348  5759H
  337.  
  338.           --Ken Van Camp <kvancamp@ARDEC.ARPA>
  339.  
  340. ------------------------------
  341.  
  342.  
  343. Date:     Wed, 15 Apr 1987 16:39 PST
  344. From:     JGTP003%CALSTATE.BITNET@wiscvm.wisc.edu
  345. Subject:  47th Street Mail-Order Company
  346. To:       INFO-IBMPC@USC-ISIB.ARPA
  347.  
  348. In response to Joe Chin's query:
  349.  
  350. Here at CSULB we placed several orders in the past with the mail-order company
  351. 47th Street Computers.  I do not remember any major problems, however our
  352. purchase orders move so slow anyway that it is entirely possible it may have
  353. taken several weeks....at least we did eventually receive all the correct
  354. items...which is more than I can say for Northeastern...we could never get
  355. through to Northeastern by phone and they would not respond to our mail
  356. queries...and twice they shipped us the wrong item!
  357.  
  358. Glenn Zwinger (213/498-5403)
  359. Academic Computing Coordinator
  360. California State University, Long Beach
  361. JGTP003@CALSTATE.BITNET
  362.  
  363.  
  364. ------------------------------
  365.  
  366.  
  367. Date:     Thu, 16 Apr 87 00:01 EDT
  368. From: Daniele Montanari <MONTAN1%BRANDEIS.BITNET@wiscvm.wisc.edu
  369. Subject: 47th St. Mail Order
  370.  
  371. A friend of mine and myself have ordered our IBM XT's plus video
  372. cards, monitors, software, etc, from 47th St.  I don't remember
  373. exactly how long they told us it would take to receive the shipment
  374. (4-6 weeks?), but we got them in time, perhaps even a bit earlier.
  375. Everything was in perfect condition, and we were quite pleased with
  376. the whole thing.  Later on my friend also ordered from 47th St an
  377. 8087; they made a mistake, and sent to him an 80287.  It took them a
  378. little while, but eventually the thing got replaced.  This was about
  379. a year ago.
  380.  
  381. Certainly, dealing with mail order houses is often bad for your blood
  382. pressure (sometimes you have the impression they lost everything but
  383. your credit card number), but I think that dealing with 47th St Photo
  384. is as safe as this kind of business can be.
  385.  
  386. Daniele
  387.  
  388. Standard disclaimer here: no ties with the shop, just a satisfied customer ...
  389.  
  390. ------------------------------
  391.  
  392.  
  393. Date:  Thu, 16 Apr 87 19:02 EDT
  394. From:  Hess@MIT-MULTICS.ARPA
  395. Subject:  IBM DIA DCA Manual Numbers
  396. To:  AYAC071@UTA3081.BITNET
  397.  
  398.  
  399. I had the same question a few months ago and nobody could
  400. ever help me out.  So here's the info:
  401.  
  402. Nitty-gritty:
  403. DCA Final-Form-Text Reference                      SC23-0757-1
  404. DCA Revisable-Form-Text Reference                  SC23-0758-1
  405.  
  406. For new folks who need IBM language lessons first:
  407. Office Information Architectures: Concepts         GC23-0765-0
  408. Advanced Architectures: APPC, SNADS, DIA, and DCA  GG22-9105
  409. Office Systems Architecture Primer                 GG24-1659-0
  410.  
  411. The second set should be about $5 each, the first set $20 each.
  412. You get them by calling the nearest IBM sales office, and asking
  413. for the librarian.  He/she will be able to tell you what to do
  414. to send them the check.
  415.  
  416. Brian
  417.  
  418. ------------------------------
  419.  
  420.  
  421. Date:  Thu, 16 Apr 87 20:07 EDT
  422. From:  AELevy@DOCKMASTER.ARPA
  423. Subject:  Binary High Speed Transfer
  424.  
  425.  
  426. A friend needs to send data using a bisynch or other synch protocol
  427. between 2 pcs Speed will be at least 19.2.  My concern is that bisynch
  428. will be inefficient with line turn arounds.  Any experience with sdlc or
  429. other card/protocols appreciated.  Thruput is of the utmost importance.
  430. Thanks, Allan
  431.  
  432. ------------------------------
  433.  
  434.  
  435. Date:    Wed, 15 Apr 87 09:21 EDT
  436. From: Paul Zonfrillo <UEG101%URIMVS.BITNET@wiscvm.wisc.edu>
  437. Subject: 3-D Modeling
  438.  
  439. Hello,
  440.  
  441. Does anybody know of a package (pref. p.d.) that does
  442. 3-d modeling?  I would also like to use our HP plotter to
  443. draw..
  444.  
  445. Thanks in advance
  446.  
  447. Paul Zonfrillo
  448. The University of Rhode Island
  449.  
  450. UEG101@urimvs (bitnet)
  451.  
  452. ------------------------------
  453.  
  454.  
  455. Date: 15 Apr 87 08:32:28 PDT (Wednesday)
  456. Subject: BIOS System Diagnostic
  457. From: DIshikawa.OSBUSouth@Xerox.COM.OsbuSouth.OsbuSouth.ARPA
  458.  
  459. Does anyone on this distribution list know of a program that tests all
  460. of the BIOS and DOS interrupts, and the entire memory map, on an IBM PC
  461. ?
  462.  
  463. --Dan Ishikawa
  464. ------------------------------
  465.  
  466.  
  467. From: Bob Brankley <brankley%usfvax2.uucp@RELAY.CS.NET>
  468. Date: 15 Apr 87 02:37:12 GMT
  469. Subject: MAJOR Glitch in Turbo Pascal Command.com
  470. Organization: University of South Florida, Tampa, Fl
  471.  
  472.  
  473. My roommate was working on our PC-XT(w/ 20 meg hard drive) using
  474. dynamic allocation under Turbo Pascal.  He apparently made one or
  475. both of the following mistakes:
  476.  
  477.     1) Failed to dispose of memory he no longer was using
  478.     2) attempted to dispose of memory he never allocated
  479.  
  480. His program executed until he reached a portion of code which
  481. ungracefully exited into DOS.  All was not well.  We attempted to do
  482. a "dir" and got the message "file not found".  We attempted to list
  483. other directories and got either the same message or a screen full of
  484. garbage.  The plot thickens: we cold booted the machine and
  485. everything came back intact(files and directories, both)!  A disk
  486. check revealed that everything was ok.  Does anyone have an idea what
  487. caused this to happen?  Is it a DOS glitch or a Turbo glitch?  I have
  488. heard that Turbo has a tendency to screw up DOS, but never this
  489. badly.
  490.  
  491. My gut feeling says that Turbo's been playing with command.com again, but
  492. could this possibly be some sort of obscure BIOS problem?  Directories do
  493. not usually disappear and reappear mystically.  Besides, this is on a hard
  494. drive and I would sleep better knowing that the directory tree is not being
  495. filled with spurious garbage.
  496.  
  497. We were running with the following hardware and software:
  498.  
  499.     IBM PC-XT -- 640K
  500.     DOS VER.  -- 3.10
  501.     Tur. Ver. -- 3.0
  502.  
  503.  
  504. If you have an extremely detailed answer, please respond by e-mail.
  505.  
  506.                     Thanks in advance
  507.  
  508. A-CUBED
  509. University Of South Florida
  510. CSNET:         adams@USF.EDU
  511. UUCP :         {favorite machine,gatech,ihnp4!akgua}!usfvax2!adams
  512. Rude Comments: /dev/null@USF.EDU
  513. "Computer Engineer's have longer uptimes and less downtime"
  514.  
  515.  
  516.  
  517. ------------------------------
  518.  
  519.  
  520. Date:         Wed, 15 Apr 87 19:53:20 EDT
  521. From: John Salter <TS5598%OHSTVMA.BITNET@wiscvm.wisc.edu>
  522. Subject: Two Color Monitors at Once
  523.  
  524.  
  525. I am trying to set up a two monitor work station in which both displays
  526. are in COLOR.  The idea is to install two graphic adapters (CGA with CGA,
  527. CGA with EGA or EGA with EGA) in a PC or AT and have them produce a
  528. DIFFERENT display on their respective monitor type.
  529.  
  530. When I try to install two CGAs, the computer screams at me.  My only other
  531. attempt at adapter installation was using IBM's EGA with a CGA.  The
  532. problem with this combination is that one of the displays MUST BE monochrome.
  533.  
  534. One possibility is TECMAR's EGA MASTER.  A review of it in the OCT. 1986
  535. issue of PC TECH JOURNAL, points out a feature of supporting two EGA cards
  536. by changing the I/O address on the cards.  This would be my last resort
  537. because of the expense of two EGAs.
  538.  
  539. Another EGA card. titled, the EGA WONDER, advertise that it can work
  540. with any DISPLAY type.  Has anyone had any experience with either of
  541. these cards in the context that I am investigating.
  542.  
  543. Can one install two graphic adapters in a PC or AT and have them both
  544. work with COLOR displays?  Furthermore, once they are installed, how do
  545. you switch between them?  What is the conflict (memory or interrupts)?
  546.  
  547. Any help with my problem is greatly appreciated.
  548.  
  549. ------------------------------
  550.  
  551.  
  552. Date:     Thu, 16 Apr 87 08:54 EST
  553. From:     PICARD%gmr.com@RELAY.CS.NET
  554. Subject:  3270 AT/G Cycle Priorities
  555.  
  556.  
  557. We are currently using a 3270 AT/G as both an MVS and JES3 console.
  558. During heavy message traffic our operators have a difficult time
  559. entering anything in.  It seems anytime the PC is processing a message
  560. the keyboard temporarily locks.  The latest word I could get from IBM
  561. was that is exactly what happens.  Anything that is coming from
  562. a host is given highest priority.  I would like to modify this giving
  563. the keyboard highest and leaving the rest alone.  Before I dive into the
  564. PC innards I'd like to know if anyone has some suggestions for me.
  565.  
  566. Thanks in advance!
  567.  
  568. ------------------------------
  569.  
  570.  
  571. Date:     Thu, 16 Apr 1987 00:56 PST
  572. From:     JAJZ801%CALSTATE.BITNET@wiscvm.wisc.edu
  573. Subject:  Simulation Package Wanted
  574.  
  575.  
  576.   Can any point me to a public domain or shareware simulation
  577. package. Source is OK if fortran or basic but please no C. It's
  578. only going to be used for a little while so I don't want to spend
  579. lots of money or lots of time learning a complex system either.
  580. Thanks for any information.
  581.  
  582.    Jeff Sicherman
  583.    JAJZ801@CALSTATE.BITNET
  584.  
  585.  
  586. ------------------------------
  587.  
  588.  
  589. Date: 16 Apr 87 09:52:58 EDT (Thursday)
  590. From: Crocca.WBST@Xerox.COM
  591. Subject: MS-DOS CHMOD Help
  592.  
  593.  
  594. Hi,
  595.  
  596. This is a question about programming DOS functions HEX(43).
  597.  
  598. Some time ago I wrote a program which uses the GetFileAttributes ($4300)
  599. and SetFileAttributes ($4301) function in DOS. I wrote the original
  600. under 2.11 using the Norton book as my documentation. Taking Norton's
  601. advice, I checked the error return for 2,3 or 5 with anything else
  602. assumed to be an error.
  603.  
  604. I have just tried to run this little program on another machine under
  605. 3.2. The results are perplexing. In general it works properly UNLESS the
  606. file whose attributes I am trying to determine (GetFileAttributes)
  607. happens to have JUST the "hidden" bit set, e.g the pattern is ($2). Then
  608. I get back "file not found".  Any other legal combination involving the
  609. "hidden" bit works properly.
  610.  
  611. Can someone explain this behavior to me? Under 2.11 it was acceptable to
  612. ignore the "carry flag" upon return from the function call. Does 3.x
  613. formalize the need for testing the "carry flag"? Is it reliable for this
  614. function call? Should the test for success be different between 2.x and
  615. 3.x?
  616.  
  617. The version of Norton's book which I have incorporates 1.x --> 3.1.
  618.  
  619. Thanks in advance for any insight you all are able to give me.
  620.  
  621. Bill
  622.  
  623. [There are several programs in the info-ibmpc lending library that play with
  624. attribute bits. -wab]
  625.  
  626. ------------------------------
  627.  
  628.  
  629. Date: Thu, 16 Apr 87 11:25:15 est
  630. From: john watters <watters@ge-rtp.ge.com>
  631. Subject: Simplex and Linear Programming Lindo
  632.  
  633.  
  634. In response to the question about SIMPLEX and LP programs - I have seen a
  635. program called LINDO (which has a Microsoft copyright in it).  It solves
  636. LP ind integer programming problems - method unknown.  Sorry I don't know 
  637. how to obtain it yet - If I find out I'll pass it on.
  638.  
  639.  
  640. ------------------------------
  641.  
  642.  
  643. Date: 16 April 1987 10:38:47 CDT
  644. From: Bill Rogers   <ROGERS%UIUCVMD.BITNET@wiscvm.wisc.edu>
  645. Subject: PD Gosling EMACS Help
  646.  
  647. I've picked up a PD EMACS from Public Brands Software. It is authored by
  648. James Gosling at CMU, but outside of that, there is no documentation.
  649. Does anyone have a cheat sheet of Key bindings or Macro Libraries they
  650. would like to share. Most Unix-ites rave about EMACS and I would like to
  651. give this a fair chance. Thanks, in advance.
  652. Bill Rogers
  653.  
  654.  
  655. ------------------------------
  656.  
  657.  
  658. Date: Tue, 14 Apr 87 12:49:51 CDT
  659. From: "Rich Winkel UMC Math Dept." <MATHPG1%UMCVMB.BITNET@wiscvm.wisc.edu>
  660. Subject: EGA Screen Blanking
  661.  
  662. Does anyone know the procedure for blanking the EGA?  I'm trying to write
  663. a screen saver TSR routine.  I tried the 'disable video drivers' bit in the
  664. misc output register, but it makes the screen gray, not black.
  665. Thanks for any help!
  666.  
  667. Rich Winkel
  668. (MATHPG1@UMCVMB.BITNET)
  669.  
  670. ------------------------------
  671.  
  672.  
  673. From: <redmill%dukeac@relay.cs.net>
  674. Subject: Having TurboPascal Accept Commands from a File
  675. Date: 16 Apr 87 17:21:58 GMT
  676. Organization: Academic Computing, Duke University, Durham, NC
  677.  
  678.  
  679.  
  680. I was wondering if there is some way (by patch or by program) to 
  681. cause turbo pascal version 3 to take commands from stdin, or from a 
  682. program that fools the computer into thinking it is receiving keystrokes
  683. from the keyboard, but really is taking them from a disk file.
  684.    I am running on an IBM PC clone under dos 3.1 with 640K with a hard
  685. disk.  I would like to do the following:
  686.  
  687.      turbo < turbocmd.txt
  688.  
  689. where turbocmd.txt is a file of turbo commands that will answer the
  690. load error messages question, load a source file, compile and run it,
  691. then exit back to msdos, where a dos batch file will take over.
  692.     Any thoughts?
  693.     Please reply to me personally, and I will summarize the results to 
  694. the net.
  695.  
  696. Thanks,
  697. ...keith
  698.  
  699. Keith Redmill, Duke University, Box 6942 CS, Durham, NC  27708
  700.  
  701. BITNET: DREDML@TUCC.BITNET (preferred mailing address)
  702.         DREDML@TUCCVM.BITNET
  703. UUCP: {decvax,philabs,ihnp4,akqua}!mcnc!ecsvax!dukeac!redmill
  704.  
  705. ...Just a moment, I am busy doing the impossible right now.
  706.  
  707.  
  708. ------------------------------
  709.  
  710. End of Info-IBMPC Digest
  711. ************************
  712.  
  713.  
  714. -------
  715.  
  716.  
  717.